home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 January - Disc 2 / Macworld (1999-01) (Disk 2).dmg / Serious Demos / Symbolic Composer 4.2 / Environment / System / MAJOR / Process / fold-tonality < prev    next >
Encoding:
Text File  |  1998-10-23  |  926 b   |  19 lines  |  [TEXT/ScoM]

  1. fold-tonality max-note max-octave tonality-list
  2.  
  3. This function reduces the range of the tonality so that notes that go higher than the max-note and max-octave are octave-transposed to keep below that limit.
  4.  
  5. Examine the following chord progression in the visualizer. Notice how the chord progression goes higher and higher.
  6.  
  7. (symbols-to-tonality
  8.        symbols '(a b c d e f g h)
  9.        transpose '((0 2 4))
  10.        mapping (activate-tonality (messiaen6 c 5)))
  11.  
  12. Here is the same chord progression limited to a 5. The progression keeps in a uniform range and will sound much better. Note that the notes which exceed the limit and are transposed down still stay in the same position in the tonality list. To sort the tonality into lower..higher order use sort-tonality.
  13.  
  14. (fold-tonality 
  15.  'a 5 (symbols-to-tonality
  16.        symbols '(a b c d e f g h)
  17.        transpose '((0 2 4))
  18.        mapping (activate-tonality (messiaen6 c 5))))
  19.